* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f4f6f8;
  padding: 50px 20px;
}

.activities h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  width: 320px;
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-12px);
}

/* Image */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay gradient */
.overlay {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.boating {
  background: linear-gradient(to top, #0072ff, transparent);
}

.fishing {
  background: linear-gradient(to top, #11998e, transparent);
}

.dance {
  background: linear-gradient(to top, #ff512f, transparent);
}

/* Content */
.content {
  position: absolute;
  bottom: 0;
  padding: 25px;
  color: white;
}

.icon {
  font-size: 40px;
}

.content h2 {
  margin-top: 10px;
  font-size: 26px;
}

.content p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}
/* Logo bar */
.logo-bar {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Logo styling */
.logo {
  height: 60px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    height: 45px;
  }
}
